home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / gprof / ns532.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-04  |  382 b   |  18 lines

  1. #include "gprof.h"
  2. #include "symtab.h"
  3.  
  4. /*
  5.  * dummy.c -- This file should be used for an unsupported processor type.
  6.  * It does nothing, but prevents findcall() from being unresolved.
  7.  */
  8.  
  9. void
  10. find_call (parent, p_lowpc, p_highpc)
  11.      Sym *parent;
  12.      bfd_vma p_lowpc;
  13.      bfd_vma p_highpc;
  14. {
  15.   fprintf (stderr, "%s: -c supported on this machine architecture\n",
  16.        whoami);
  17. }
  18.